Jump_off_a_cliff

Roblox Coins Hero Simulator Free Vip Script

Jan 30th, 2021 (edited)
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.42 KB | None | 0 0
  1. -- Made by Jump_off_a_cliff on pastebin
  2. -- Go check my pastebin out - https://pastebin.com/u/Jump_off_a_cliff
  3. -- Play the game here - https://www.roblox.com/games/5827078246/New-Coins-Hero-Simulator
  4. -- Enjoy!
  5. --The frame dragify was skidded
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Frame = Instance.new("Frame")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Name = "ScreenGui"
  14. ScreenGui.Parent = game.CoreGui
  15. ScreenGui.Enabled = true
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Name = "Frame"
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.fromRGB(170, 255, 139)
  21. Frame.BorderSizePixel = 0
  22. Frame.Position = UDim2.new(0.345701933, 0, 0.318181813, 0)
  23. Frame.Size = UDim2.new(0, 219, 0, 260)
  24.  
  25. TextButton.Name = "TextButton"
  26. TextButton.Parent = Frame
  27. TextButton.BackgroundColor3 = Color3.fromRGB(124, 194, 255)
  28. TextButton.BorderSizePixel = 4
  29. TextButton.Size = UDim2.new(0, 219, 0, 240)
  30. TextButton.Font = Enum.Font.SourceSansSemibold
  31. TextButton.Text = "Teleport to VIP"
  32. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. TextButton.TextScaled = true
  34. TextButton.MouseButton1Down:Connect(function()
  35.     local New_CFrame = CFrame.new(43.0054703, 2.5430162, 109.234886, -0.903391957, 2.78959753e-08, 0.428815931, 6.29363228e-08, 1, 6.75352325e-08, -0.428815931, 8.79988846e-08, -0.903391957)
  36.  
  37.     local ts = game:GetService("TweenService")
  38.     local uis = game:GetService("UserInputService")
  39.     local char = game.Players.LocalPlayer.Character
  40.  
  41.     local part = char.HumanoidRootPart
  42.     local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
  43.     local tp = {CFrame = New_CFrame}
  44.  
  45.     ts:Create(part, ti, tp):Play()
  46. end)
  47.  
  48. --Scripts:
  49.  
  50. local function UISU_fake_script() -- Frame.Dragify
  51.     local script = Instance.new('LocalScript', Frame)
  52.  
  53.     local UIS = game:GetService("UserInputService")
  54.     function dragify(Frame)
  55.         dragToggle = nil
  56.         local dragSpeed = 0.50
  57.         dragInput = nil
  58.         dragStart = nil
  59.         local dragPos = nil
  60.         function updateInput(input)
  61.             local Delta = input.Position - dragStart
  62.             local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  63.             game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.30), {Position = Position}):Play()
  64.         end
  65.         Frame.InputBegan:Connect(function(input)
  66.             if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  67.                 dragToggle = true
  68.                 dragStart = input.Position
  69.                 startPos = Frame.Position
  70.                 input.Changed:Connect(function()
  71.                     if input.UserInputState == Enum.UserInputState.End then
  72.                         dragToggle = false
  73.                     end
  74.                 end)
  75.             end
  76.         end)
  77.         Frame.InputChanged:Connect(function(input)
  78.             if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  79.                 dragInput = input
  80.             end
  81.         end)
  82.         game:GetService("UserInputService").InputChanged:Connect(function(input)
  83.             if input == dragInput and dragToggle then
  84.                 updateInput(input)
  85.             end
  86.         end)
  87.     end
  88.  
  89.     dragify(script.Parent)
  90. end
  91. coroutine.wrap(UISU_fake_script)()
  92.  
  93. while true do
  94.     if game:GetService("Players").LocalPlayer.PlayerGui.Extra:FindFirstChild("AntiSploitClient") then
  95.         game:GetService("Players").LocalPlayer.PlayerGui.Extra.AntiSploitClient:Destroy()
  96.         game:GetService("Players").LocalPlayer.PlayerGui.Extra.AntiSploitClient2:Destroy()
  97.     end
  98.     wait()
  99. end
Add Comment
Please, Sign In to add comment