Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SeonixRoblox/1cd0a447f3dc1594a0db75e5da63f0de to your computer and use it in GitHub Desktop.
Save SeonixRoblox/1cd0a447f3dc1594a0db75e5da63f0de to your computer and use it in GitHub Desktop.
--Made by Seonix in Roblox, Pastebin and GitHub
local ScreenGui = Instance.new("ScreenGui")
local OpenMain = Instance.new("Frame")
local OpenLabel = Instance.new("TextLabel")
local Open = Instance.new("TextBox")
local Open2 = Instance.new("TextButton")
local Open3 = Instance.new("TextBox")
local Open4 = Instance.new("TextButton")
--Properties
ScreenGui.Parent = game.CoreGui
OpenMain.Name = "OpenMain"
OpenMain.Parent = ScreenGui
OpenMain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
OpenMain.Position = UDim2.new(0, 733, 0, 76)
OpenMain.Size = UDim2.new(0, 275, 0, 150)
OpenMain.Draggable = true
OpenMain.Transparency = 0.25
OpenLabel.Parent = OpenMain
OpenLabel.Name = "OpenLabel"
OpenLabel.BackgroundColor3 = Color3.new(1, 1, 1)
OpenLabel.Size = UDim2.new(0, 275, 0, 31)
OpenLabel.Text = "Player editor"
OpenLabel.TextSize = 14
OpenLabel.Font = "Cartoon"
OpenLabel.TextScaled = true
Open.Name = "GravityBox"
Open.Parent = OpenMain
Open.BackgroundColor3 = Color3.new(0.0745098, 0.0745098, 0.0745098)
Open.BorderColor3 = Color3.new(0, 0, 0)
Open.BorderSizePixel = 2
Open.Position = UDim2.new(0.110256657, 0, 0.38801735, 0)
Open.Size = UDim2.new(0, 160, 0, 30)
Open.Font = Enum.Font.SourceSans
Open.Text = "Gravity value"
Open.TextColor3 = Color3.new(1, 1, 1)
Open.TextScaled = true
Open.TextSize = 14
Open.TextStrokeTransparency = 0
Open2.Name = "GravSelect"
Open2.Parent = OpenMain
Open2.BackgroundColor3 = Color3.new(0.0745098, 0.0745098, 0.0745098)
Open2.BorderColor3 = Color3.new(0, 0, 0)
Open2.BorderSizePixel = 2
Open2.Position = UDim2.new(0.710256657, 0, 0.38801735, 0)
Open2.Size = UDim2.new(0, 60, 0, 30)
Open2.Font = Enum.Font.SourceSans
Open2.Text = "Select"
Open2.TextColor3 = Color3.new(1, 1, 1)
Open2.TextScaled = true
Open2.TextSize = 14
Open2.TextStrokeTransparency = 0
Open3.Name = "SpeedBox"
Open3.Parent = OpenMain
Open3.BackgroundColor3 = Color3.new(0.0745098, 0.0745098, 0.0745098)
Open3.BorderColor3 = Color3.new(0, 0, 0)
Open3.BorderSizePixel = 2
Open3.Position = UDim2.new(0.110256657, 0, 0.68801735, 0)
Open3.Size = UDim2.new(0, 160, 0, 30)
Open3.Font = Enum.Font.SourceSans
Open3.Text = "Speed value"
Open3.TextColor3 = Color3.new(1, 1, 1)
Open3.TextScaled = true
Open3.TextSize = 14
Open3.TextStrokeTransparency = 0
Open4.Name = "SpeedSelect"
Open4.Parent = OpenMain
Open4.BackgroundColor3 = Color3.new(0.0745098, 0.0745098, 0.0745098)
Open4.BorderColor3 = Color3.new(0, 0, 0)
Open4.BorderSizePixel = 2
Open4.Position = UDim2.new(0.710256657, 0, 0.68801735, 0)
Open4.Size = UDim2.new(0, 60, 0, 30)
Open4.Font = Enum.Font.SourceSans
Open4.Text = "Select"
Open4.TextColor3 = Color3.new(1, 1, 1)
Open4.TextScaled = true
Open4.TextSize = 14
Open4.TextStrokeTransparency = 0
--Functions
local function makegravity()
game.Players.LocalPlayer.Character.Humanoid.JumpPower = Open.Text
end
local function makespeed()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Open3.Text
end
Open2.MouseButton1Click:Connect(makegravity)
Open4.MouseButton1Click:Connect(makespeed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment