Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(player)
- if player.Name == "Koki0991" then
- local gems = player:WaitForChild("PlayerStats").Gem
- local Menu = Instance.new("ScreenGui")
- Menu.Name = "FreeGemsMenu"
- Menu.Parent = player:WaitForChild("PlayerGui")
- Menu.ResetOnSpawn = false
- local UIcorner1 = Instance.new("UICorner")
- UIcorner1.CornerRadius = UDim.new(0, 6)
- local UIcorner2 = Instance.new("UICorner")
- UIcorner1.CornerRadius = UDim.new(0, 8)
- local Frame = Instance.new("Frame",Menu)
- Frame.Size = UDim2.new(0.329, 0,0.574, 0)
- Frame.Position = UDim2.new(0.335, 0,0.212, 0)
- Frame.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
- Frame.BorderSizePixel = 0
- UIcorner1.Parent = Frame
- local Title = Instance.new("TextLabel",Frame)
- Title.Name = "Title"
- Title.Text = "Click The Button For Gems!"
- Title.Font = Enum.Font.Oswald
- Title.TextScaled = true
- Title.Position = UDim2.new(0.002, 0,0.026, 0)
- Title.Size = UDim2.new(1, 0,0.122, 0)
- Title.BackgroundTransparency = 1
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- local button = Instance.new("TextButton",Frame)
- button.Name = "GemsButton"
- button.BackgroundColor3 = Color3.fromRGB(0, 153, 255)
- UIcorner2.Parent = button
- button.Text = "+500 Gems"
- button.TextScaled = true
- button.Size = UDim2.new(0.458, 0,0.132, 0)
- button.Position = UDim2.new(0.272, 0,0.433, 0)
- button.MouseButton1Down:Connect(function()
- gems.Value = gems.Value + 500
- end)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement