game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "Script Executed";
Text = "Fling All";
Duration = 6;
})
local Targets = {"All"} -- "All", "Target Name", "arian_was_here"
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local AllBool = false
local GetPlayer = function(Name)
Name = Name:lower()
if Name == "all" or Name == "others" then
AllBool = true
return
elseif Name == "random" then
local GetPlayers = Players:GetPlayers()
if table.find(GetPlayers,Player) then table.remove(GetPlayers,table.find(GetPlayers,Player)) end
return GetPlayers[math.random(#GetPlayers)]
elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
for _,x in next, Players:GetPlayers() do
if x ~= Player then
if x.Name:lower():match("^"..Name) then
return x;
elseif x.DisplayName:lower():match("^"..Name) then
return x;
end
end
end
else
return
end
end
local Message = function(_Title, _Text, Time)
game:GetService("StarterGui"):SetCore("SendNotification", {Title = _Title, Text = _Text, Duration = Time})
end
local SkidFling = function(TargetPlayer)
local Character = Player.Character
local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid and Humanoid.RootPart
local TCharacter = TargetPlayer.Character
local THumanoid
local TRootPart
local THead
local Accessory
local Handle
if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
end
if THumanoid and THumanoid.RootPart then
TRootPart = THumanoid.RootPart
end
if TCharacter:FindFirstChild("Head") then
THead = TCharacter.Head
end
if TCharacter:FindFirstChildOfClass("Accessory") then
Accessory = TCharacter:FindFirstChildOfClass("Accessory")
end
if Accessoy and Accessory:FindFirstChild("Handle") then
Handle = Accessory.Handle
end
if Character and Humanoid and RootPart then
if RootPart.Velocity.Magnitude < 50 then
getgenv().OldPos = RootPart.CFrame
end
if THumanoid and THumanoid.Sit and not AllBool then
return Message("Error Occurred", "Targeting is sitting", 5) -- u can remove dis part if u want lol
end
if THead then
workspace.CurrentCamera.CameraSubject = THead
elseif not THead and Handle then
workspace.CurrentCamera.CameraSubject = Handle
elseif THumanoid and TRootPart then
workspace.CurrentCamera.CameraSubject = THumanoid
end
if not TCharacter:FindFirstChildWhichIsA("BasePart") then
return
end
local FPos = function(BasePart, Pos, Ang)
RootPart.CFrame = CFrame.new(BasePart.Position) * Pos * Ang
Character:SetPrimaryPartCFrame(CFrame.new(BasePart.Position) * Pos * Ang)
RootPart.Velocity = Vector3.new(9e7, 9e7 * 10, 9e7)
RootPart.RotVelocity = Vector3.new(9e8, 9e8, 9e8)
end
local SFBasePart = function(BasePart)
local TimeToWait = 2
local Time = tick()
local Angle = 0
repeat
if RootPart and THumanoid then
if BasePart.Velocity.Magnitude < 50 then
Angle = Angle + 100
FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle),0 ,0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(2.25, 1.5, -2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(-2.25, -1.5, 2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
task.wait()
else
FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, -THumanoid.WalkSpeed), CFrame.Angles(0, 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, -TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(0, 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(math.rad(90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5 ,0), CFrame.Angles(math.rad(-90), 0, 0))
task.wait()
FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
task.wait()
end
else
break
end
until BasePart.Velocity.Magnitude > 500 or BasePart.Parent ~= TargetPlayer.Character or TargetPlayer.Parent ~= Players or not TargetPlayer.Character == TCharacter or THumanoid.Sit or Humanoid.Health <= 0 or tick() > Time + TimeToWait
end
workspace.FallenPartsDestroyHeight = 0/0
local BV = Instance.new("BodyVelocity")
BV.Name = "EpixVel"
BV.Parent = RootPart
BV.Velocity = Vector3.new(9e8, 9e8, 9e8)
BV.MaxForce = Vector3.new(1/0, 1/0, 1/0)
Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, false)
if TRootPart and THead then
if (TRootPart.CFrame.p - THead.CFrame.p).Magnitude > 5 then
SFBasePart(THead)
else
SFBasePart(TRootPart)
end
elseif TRootPart and not THead then
SFBasePart(TRootPart)
elseif not TRootPart and THead then
SFBasePart(THead)
elseif not TRootPart and not THead and Accessory and Handle then
SFBasePart(Handle)
else
return Message("Error Occurred", "Target is missing everything", 5)
end
BV:Destroy()
Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, true)
workspace.CurrentCamera.CameraSubject = Humanoid
repeat
RootPart.CFrame = getgenv().OldPos * CFrame.new(0, .5, 0)
Character:SetPrimaryPartCFrame(getgenv().OldPos * CFrame.new(0, .5, 0))
Humanoid:ChangeState("GettingUp")
table.foreach(Character:GetChildren(), function(_, x)
if x:IsA("BasePart") then
x.Velocity, x.RotVelocity = Vector3.new(), Vector3.new()
end
end)
task.wait()
until (RootPart.Position - getgenv().OldPos.p).Magnitude < 25
workspace.FallenPartsDestroyHeight = getgenv().FPDH
else
return Message("Error Ocurrido", "El Script A Fallado", 5)
end
end
if not Welcome then Message("By Augus X", "", 6) end
getgenv().Welcome = true
if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end
if AllBool then
for _,x in next, Players:GetPlayers() do
SkidFling(x)
end
end
for _,x in next, Targets do
if GetPlayer(x) and GetPlayer(x) ~= Player then
if GetPlayer(x).UserId ~= 2924145477 then
local TPlayer = GetPlayer(x)
if TPlayer then
SkidFling(TPlayer)
end
else
Message("ERROR AL ASER FLING", "", 8)
end
elseif not GetPlayer(x) and not AllBool then
Message("ERROR OCURRIDO", "NO SE LE ISO FLING", 8)
end
end
Fling All Script (Raw) - Pastebin.com (2024)
Top Articles
Die Simpsons: Springfield (Tapped Out) - Test
Midco Video Channel Lineup for SIOUX FALLS, SD
Trisha Paytas Quentin Tarantino Relationship
Latest Posts
Recommended Articles
- Game Of Familia Scan Fr
- Thomas Marlier People's Choice
- Directed Doublecross On Costa's Island (1997)
- Park Myung-Shin Roots
- The Enduring Legacy: Exploring the Philips Stadion of Eindhoven, Netherlands - Stadiums World
- Nail Polish - Makeup | Ulta Beauty
- List of Games Require Nintendo Switch Online Subscription
- Ring Finger Princess Episode 6 Dailymotion
- Spieltest: Masks: A New Generation – Die Freak Fource - Pen&Paper - Rezensionen
- World Chess Championship 2024: The immediate thrill of Bullet Chess explained
- Masks That Left Our Testers’ Skin Clear of Blackheads After 400 Hours of Testing
- Boost Dog Health with Probiotics, Prebiotics, and Postbiotics – AnimalBiome
- Lyrics ドロロンえん魔くん
- The Best Hair Growth Products for a Healthier Scalp
- Pen X Pal Action Figures
- Most Powerful Characters In Dannetsu Senjou No Kodou
- All Night Of The Cameller And The Prince
- Download Relife S2 Sub Indo
- Essential Handicap Bathroom Accessories For Disabled People - LifeZest
- Pokémon Ancestral X Trading Discord
- Honjitsu Wa Ohigara Mo Yoku, Ep6
- What Year Did The Movie Weenie (2016) Come Out
- D4Dj First Mix Breakdown
- Where Watch Seatbelt Psychic
- Cast In Silent Night (2021)
- Patches Questline Guide: All Locations, Tricks & Outcomes
- The Booze of Monkey Island
- Ike! Ike!! Hamster Microsoft Store
- How To Get Skins In Skid The Scrambling Squirrel
- HUAWEI AppGallery | HUAWEI Deutschland
- Vamp!! 111
- The Deep Sea Of Words 216
- J.j. Nolans Net Worth
- STERIS PHARMA | Buy Dermatology Products online in india
- Modern Love Staffel 2 Episodenguide
- Watch Sign For Free
- Dr. Mazing Characters In Real Life
- Semi Automatic Round Bottle Labeling Machine • $899 ZLA+
- Where Did Jane De Leon Get Married
- Plants' Post-Bloom Demise: A Natural Cycle Explained
- SonaSky - Kwadron PMU
- Dice Of Arcana Mage Build
- Tensai Ouji No Akaji Kokka Saisei Jutsu Siblings
- How To Play 3D Pinball Space Cadet in Windows 10
- Talk poems on Hello Poetry
- Types of Air Conditioners
- How Many Recorder To Ransel Mi Series Are There
- AMAZING McLean, VA Online Auction Estate Sale PACKED with Mid Century - household items - by dealer - housewares sale...
- All Bonobono Movie Openings
- Nautilus (Original Soundtrack), Nainita Desai - Qobuz
- Insect Land (Ona) Season 2 Op
- Creepers Merino Toe Socks | The Best Toe Socks for Running & Hiking
- Akupunktur kan hjelpe på sykdom og smerte
- Yurumates 3D Plus Ova Official Website
- Top 100 Most Popular Actors In Their 40s
- Ore ga Suki nano wa Imouto dakedo Imouto ja Nai
- Adrian Meyer Hall Of Fame
- Was 三毛历险记 Based On A True Story
- What Is Kateikyoushi Hitman Reborn! Streaming On
- What to Know About Hair Removal With an Epilator
- Drag Racer V3 Cross Progression
- Nikita Alexandrov Stats, Height, Weight, Position, Salary, Title | Hockey-Reference.com
- Matrix Games - Scourge of War: Antietam
- Watch Uzaki-Chan Wants To Hang Out! 2Nd Season Episode 1 Online
- Sore Ike! Anpanman: Anpanman To Chiisana Santa No Christmas Game App
- Is Crystal R. Fox Vegetarian
- Jikkenhin Kazoku Game Reddit
- The Severing Crime Edge Captain
- Piping and valves - Anglais
- Okujou No Bye-Bye Last Song
- How Long Is Cabaret (1993) Film
- David Julyan’s Bloody Brilliant Score for 'The Descent' [Terror on the Turntable]
- 10 Reasons to Add Pumpkin Seeds To Your Diet
- Can “The Whole World" Be Wrong?
- Michał Czernecki Interview 2017
- How Long Was Explosions In The Heart (2024)
- Is Alex D'antona Dead
- Xbox Series X: Vorbestellung zur Galaxy Black Special Edition und mehr
- No Gasoline For Xbox Series S
- Rich Girl Caretaker: I'm Secretly The Caregiver Of The Most Popular Girl In This Rich Kid School Ver Online Español
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- What Can You Watch Daily Dose Of Sunshine On
- Rayan Rooke @rayanrooke - Tumblr Blog | Tumlook
- Cooking Games | Play Online for Free | NuMuKi
- Swallowed cast and director on adding a new viewpoint to body horror films
- When Is Burning In Theaters
- Neues Hotel in Rosenheim: Was an der Eröffnung verwundert – Wieso es wieder kein Luxus-Haus ist
- How To Remove Makeup: Tips for a Brighter Face
- Where Was The Movie ひまわり Filmed
- Train Sim World Ps4 Digital
Article information
Author: Ouida Strosin DO
Last Updated:
Views: 6322
Rating: 4.6 / 5 (76 voted)
Reviews: 91% of readers found this page helpful
Author information
Name: Ouida Strosin DO
Birthday: 1995-04-27
Address: Suite 927 930 Kilback Radial, Candidaville, TN 87795
Phone: +8561498978366
Job: Legacy Manufacturing Specialist
Hobby: Singing, Mountain biking, Water sports, Water sports, Taxidermy, Polo, Pet
Introduction: My name is Ouida Strosin DO, I am a precious, combative, spotless, modern, spotless, beautiful, precious person who loves writing and wants to share my knowledge and understanding with you.