Advertisement
Guest User

FE Car Script (FIXED)

a guest
Jan 23rd, 2023
2,996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. --##################--
  2. --# Fixed 01-23-23 #--
  3. --# by Kieren #--
  4. --##################--
  5.  
  6. -- The UI library was deleted so i found a backup and replaced it with the deleted one! yeah it was that easy to fix cmon now.
  7.  
  8.  
  9. --compatibility for games who change service names
  10. local Playr = game:GetService("Players")
  11. local Run = game:GetService("RunService")
  12. local Core = game:GetService("CoreGui")
  13. local LocalPlayer = Playr.LocalPlayer
  14.  
  15. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/diyar2137237243/irexion-backup/main/someshit"))() -- Literally just a UI library
  16.  
  17. local Gui = Library:AddGui({
  18. Title = {"FE Car", "Made by Lozarth & Fixed by Kieren"},
  19. ThemeColor = Color3.fromRGB(0,91,150),
  20. ToggleKey = Enum.KeyCode.RightShift,
  21. })
  22.  
  23. local Tab = Gui:AddTab("Main")
  24.  
  25. local Category = Tab:AddCategory("Main")
  26.  
  27. local Label = Category:AddLabel("Go into R6 for this script to work.")
  28.  
  29. local Button = Category:AddButton("Enable FE Car", function()
  30. LocalPlayer.Character.Humanoid.WalkSpeed=70 LocalPlayer.Character.Humanoid.JumpPower=0.0001 Float_Height="-1.03" AnimationId="129342287" local a=Instance.new("Animation") a.AnimationId="rbxassetid://"..AnimationId local a=LocalPlayer.Character.Humanoid:LoadAnimation(a) a:Play() a:AdjustSpeed(1) for a,a in pairs(LocalPlayer.Character:GetDescendants())do if a.ClassName=="Part"then a.CustomPhysicalProperties=PhysicalProperties.new(0,0,0)end end local a=1 G=game _=wait p=G:GetService("Players").LocalPlayer.Character p:FindFirstChild("Humanoid").HipHeight=Float_Height _(1.5) t=.4 for a=1,a do repeat p:FindFirstChild("Humanoid").HipHeight=Float_Height-n _(t) p:FindFirstChild("Humanoid").HipHeight=Float_Height+n _(t)until p:FindFirstChild("Humanoid").Health==0 end
  31. end)
  32.  
  33. local Category = Tab:AddCategory("Settings")
  34.  
  35. local Box = Category:AddBox("Slide", function(str)
  36. for a,a in pairs(LocalPlayer.Character:GetDescendants())do if a.ClassName=="Part"then a.CustomPhysicalProperties=PhysicalProperties.new(str,0,0)end end
  37. end)
  38.  
  39. local Box = Category:AddBox("Hipheight", function(str)
  40. Float_Height=str local a=1 G=game _=wait p=G:GetService("Players").LocalPlayer.Character p:FindFirstChild("Humanoid").HipHeight=Float_Height _(1.5) t=.4 for a=1,a do repeat p:FindFirstChild("Humanoid").HipHeight=Float_Height-n _(t) p:FindFirstChild("Humanoid").HipHeight=Float_Height+n _(t)until p:FindFirstChild("Humanoid").Health==0 end
  41. end)
  42.  
  43. local Slider = Category:AddSlider("Walkspeed", 1, 500, 16, function(val)
  44. LocalPlayer.Character.Humanoid.WalkSpeed = val
  45. end)
  46.  
  47. local Category = Tab:AddCategory("Settings Presets")
  48.  
  49. local Button = Category:AddButton("Default Car Settings Preset", function()
  50. for a,a in pairs(LocalPlayer.Character:GetDescendants())do if a.ClassName=="Part"then a.CustomPhysicalProperties=PhysicalProperties.new(0,0,0)end end
  51. LocalPlayer.Character.Humanoid.WalkSpeed = 70
  52. Float_Height="-1.03" local a=1 G=game _=wait p=G:GetService("Players").LocalPlayer.Character p:FindFirstChild("Humanoid").HipHeight=Float_Height _(1.5) t=.4 for a=1,a do repeat p:FindFirstChild("Humanoid").HipHeight=Float_Height-n _(t) p:FindFirstChild("Humanoid").HipHeight=Float_Height+n _(t)until p:FindFirstChild("Humanoid").Health==0 end
  53. end)
  54.  
  55. local Button = Category:AddButton("Extreme Car Settings Preset", function()
  56. for a,a in pairs(LocalPlayer.Character:GetDescendants())do if a.ClassName=="Part"then a.CustomPhysicalProperties=PhysicalProperties.new(0.5,0,0)end end
  57. LocalPlayer.Character.Humanoid.WalkSpeed = 500
  58. Float_Height="-1.03" local a=1 G=game _=wait p=G:GetService("Players").LocalPlayer.Character p:FindFirstChild("Humanoid").HipHeight=Float_Height _(1.5) t=.4 for a=1,a do repeat p:FindFirstChild("Humanoid").HipHeight=Float_Height-n _(t) p:FindFirstChild("Humanoid").HipHeight=Float_Height+n _(t)until p:FindFirstChild("Humanoid").Health==0 end
  59. end)
  60.  
  61.  
  62. local Category = Tab:AddCategory("Close")
  63.  
  64. local Button = Category:AddButton("Close GUI", function()
  65. Core["FE Car Made by Lozarth & Fixed by Kieren"]:Destroy()
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement