SkeletalScripts

Vouches2

Apr 10th, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  2. s.Enabled = true
  3. s.Name = "Gui"
  4.  
  5. f = Instance.new("Frame", s)
  6. f.Position = UDim2.new(0.84, 8 , 0.88, 4)
  7. f.BorderSizePixel = 4
  8. f.BorderColor3 = Color3.new(255,255,255)
  9. f.Size = UDim2.new(0.2, 0, 0.1, 50)
  10. f.BackgroundColor3 = Color3.new(0,0,0)
  11. f.BackgroundTransparency = 0.7
  12.  
  13. note = Instance.new("TextLabel", f)
  14. note.TextColor3 = Color3.new(0,0,0)
  15. note.BackgroundColor3 = Color3.new(255,255,255)
  16. note.BorderColor3 = Color3.new(27,42,53)
  17. note.BackgroundTransparency = 0.2
  18. note.Size = UDim2.new(0, 305 , 0, 50)
  19. note.Font = "SourceSansBold"
  20. note.FontSize = "Size32"
  21. note.TextSize = 32
  22. note.Text = ("WalkSpeed Changer")
  23.  
  24. join = Instance.new("TextBox", f)
  25. join.Name = "Join"
  26. join.Text = " "
  27. join.TextColor3 = Color3.new(255,255,255)
  28. join.BackgroundColor3 = Color3.new(255,255,255)
  29. join.BackgroundTransparency = 1
  30. join.Position = UDim2.new(0.09, 0 , 0, 59)
  31. join.Size = UDim2.new(0, 250 , 0, 50)
  32. join.Font = "SourceSans"
  33. join.FontSize = "Size32"
  34. join.TextSize = 31
  35. join.TextTransparency = 0.1
  36. join.TextStrokeTransparency = 1
  37.  
  38.  
  39. join.InputChanged:connect(function()
  40. text = join.Text
  41. workspace.Camera:FindFirstChild("Character", true).HumanoidPhysics.WalkSpeed = text
  42. end)
  43.  
  44.  
  45. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
  46. if k == 'v' then
  47. game.Workspace.Camera:FindFirstChild("Character", true):MoveTo(game.Players.LocalPlayer:GetMouse().hit.p)
  48. end
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment