Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
- s.Enabled = true
- s.Name = "Gui"
- f = Instance.new("Frame", s)
- f.Position = UDim2.new(0.84, 8 , 0.88, 4)
- f.BorderSizePixel = 4
- f.BorderColor3 = Color3.new(255,255,255)
- f.Size = UDim2.new(0.2, 0, 0.1, 50)
- f.BackgroundColor3 = Color3.new(0,0,0)
- f.BackgroundTransparency = 0.7
- note = Instance.new("TextLabel", f)
- note.TextColor3 = Color3.new(0,0,0)
- note.BackgroundColor3 = Color3.new(255,255,255)
- note.BorderColor3 = Color3.new(27,42,53)
- note.BackgroundTransparency = 0.2
- note.Size = UDim2.new(0, 305 , 0, 50)
- note.Font = "SourceSansBold"
- note.FontSize = "Size32"
- note.TextSize = 32
- note.Text = ("WalkSpeed Changer")
- join = Instance.new("TextBox", f)
- join.Name = "Join"
- join.Text = " "
- join.TextColor3 = Color3.new(255,255,255)
- join.BackgroundColor3 = Color3.new(255,255,255)
- join.BackgroundTransparency = 1
- join.Position = UDim2.new(0.09, 0 , 0, 59)
- join.Size = UDim2.new(0, 250 , 0, 50)
- join.Font = "SourceSans"
- join.FontSize = "Size32"
- join.TextSize = 31
- join.TextTransparency = 0.1
- join.TextStrokeTransparency = 1
- join.InputChanged:connect(function()
- text = join.Text
- workspace.Camera:FindFirstChild("Character", true).HumanoidPhysics.WalkSpeed = text
- end)
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
- if k == 'v' then
- game.Workspace.Camera:FindFirstChild("Character", true):MoveTo(game.Players.LocalPlayer:GetMouse().hit.p)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment