Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- R15 Speed Script by me
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Name = Instance.new("TextLabel")
- local Press = Instance.new("TextButton")
- local SpeedText = Instance.new("TextBox")
- local ResetSpeedText = Instance.new("TextLabel")
- local ResetSpeed = Instance.new("TextButton")
- local exit = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(170, 170, 0)
- Frame.Position = UDim2.new(0.516949177, 0, 0.270353317, 0)
- Frame.Size = UDim2.new(0, 319, 0, 135)
- Frame.Active = true
- Frame.Draggable = true
- Name.Name = "Name"
- Name.Parent = Frame
- Name.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
- Name.BorderSizePixel = 0
- Name.Size = UDim2.new(0, 319, 0, 27)
- Name.Font = Enum.Font.RobotoMono
- Name.Text = "Birthday's Speed GUI (R15)"
- Name.TextColor3 = Color3.fromRGB(0, 0, 0)
- Name.TextSize = 14.000
- Press.Name = "Press"
- Press.Parent = Frame
- Press.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- Press.BorderSizePixel = 0
- Press.Position = UDim2.new(0.47335422, 0, 0.688888788, 0)
- Press.Size = UDim2.new(0, 150, 0, 34)
- Press.Font = Enum.Font.SourceSans
- Press.Text = "Press"
- Press.TextColor3 = Color3.fromRGB(0, 0, 0)
- Press.TextSize = 14.000
- SpeedText.Name = "SpeedText"
- SpeedText.Parent = Frame
- SpeedText.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- SpeedText.Position = UDim2.new(0.47335422, 0, 0.274074078, 0)
- SpeedText.Size = UDim2.new(0, 150, 0, 35)
- SpeedText.Font = Enum.Font.SourceSans
- SpeedText.Text = "15"
- SpeedText.TextColor3 = Color3.fromRGB(0, 0, 0)
- SpeedText.TextSize = 14.000
- ResetSpeedText.Name = "ResetSpeedText"
- ResetSpeedText.Parent = Frame
- ResetSpeedText.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- ResetSpeedText.Position = UDim2.new(0.0219435729, 0, 0.274074078, 0)
- ResetSpeedText.Size = UDim2.new(0, 125, 0, 35)
- ResetSpeedText.Font = Enum.Font.SourceSans
- ResetSpeedText.Text = "Reset Speed (WIP)"
- ResetSpeedText.TextColor3 = Color3.fromRGB(0, 0, 0)
- ResetSpeedText.TextSize = 14.000
- ResetSpeed.Name = "ResetSpeed"
- ResetSpeed.Parent = Frame
- ResetSpeed.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- ResetSpeed.BorderSizePixel = 0
- ResetSpeed.Position = UDim2.new(0.0219435729, 0, 0.696296155, 0)
- ResetSpeed.Size = UDim2.new(0, 125, 0, 33)
- ResetSpeed.Font = Enum.Font.SourceSans
- ResetSpeed.Text = "Reset"
- ResetSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
- ResetSpeed.TextSize = 14.000
- exit.Name = "exit"
- exit.Parent = Frame
- exit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- exit.Size = UDim2.new(0, 27, 0, 27)
- exit.Font = Enum.Font.SourceSans
- exit.Text = "X"
- exit.TextColor3 = Color3.fromRGB(0, 0, 0)
- exit.TextSize = 14.000
- -- Scripts:
- local function NARXEVK_fake_script() -- Press.LocalScript
- local script = Instance.new('LocalScript', Press)
- script.Parent.MouseButton1Click:Connect(function()
- local player = game.Players.LocalPlayer
- local setspeed = script.Parent.Parent.SpeedText.Text
- local hum = game.Workspace:WaitForChild(player.Name).Humanoid
- if hum then
- hum.WalkSpeed = setspeed
- end
- end)
- end
- coroutine.wrap(NARXEVK_fake_script)()
- local function ZRSMF_fake_script() -- ResetSpeed.LocalScript
- local script = Instance.new('LocalScript', ResetSpeed)
- script.Parent.MouseButton1Click:Connect(function()
- end)
- print("error")
- game.StarterGui:SetCore("SendNotification", {
- Title = "RESET SPEED IS BROKEN.";
- Text = "Error!";
- Icon = "";
- Duration = "7";
- })
- end
- coroutine.wrap(ZRSMF_fake_script)()
- local function KZYKJK_fake_script() -- exit.close
- local script = Instance.new('Script', exit)
- local function OnClicked()
- script.Parent.Parent:Remove()
- end
- script.Parent.MouseButton1Click:connect(OnClicked)
- end
- coroutine.wrap(KZYKJK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement