Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --made by augus X
- local ScreenGui = Instance.new("ScreenGui")
- local Frame2 = Instance.new("Frame")
- local Frame = Instance.new("Frame")
- local TextButton2 = Instance.new("TextButton")
- local TextButton = Instance.new("TextButton")
- local TextButton1 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- ScreenGui.ResetOnSpawn = false
- Frame2.Name = "Frame2"
- Frame2.Parent = ScreenGui
- Frame2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame2.Position = UDim2.new(0.1, 0, 0.37327823, 0)
- Frame2.Size = UDim2.new(0, 363, 0, 199)
- Frame2.Visible = false
- Frame2.Style = Enum.FrameStyle.RobloxRound
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.Position = UDim2.new(0.832495809, 0, 0.508264482, 0)
- Frame.Size = UDim2.new(0, 200, 0, 67)
- Frame.Style = Enum.FrameStyle.RobloxRound
- TextButton1.Parent = Frame
- TextButton1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton1.Position = UDim2.new(0.53 , 0, 0.68, 0)
- TextButton1.Size = UDim2.new(0, 85, 0, 15)
- TextButton1.Style = Enum.ButtonStyle.RobloxRoundButton
- TextButton1.Font = Enum.Font.Code
- TextButton1.Text = "Credit To Augus X"
- TextButton1.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton1.TextSize = 10.000
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.Position = UDim2.new(0, 0, 0.025828898, 0)
- TextButton.Size = UDim2.new(0, 100, 0, 50)
- TextButton.Style = Enum.ButtonStyle.RobloxRoundButton
- TextButton.Font = Enum.Font.Code
- TextButton.Text = "False"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 25.000
- -- Scripts:
- local function RVRTSG_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- frame = script.Parent.Parent -- Take out {}s, and put name of frame
- frame.Draggable = true
- frame.Active = true
- frame.Selectable = true
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local Toggle = false
- local Toggle2 = false
- local Toggle3 = false
- print("Script Launched")
- script.Parent.Activated:Connect(function()
- if Toggle == true then
- Toggle = false
- script.Parent.Text = ("False")
- print("Now False")
- elseif Toggle == false then
- Toggle = true
- script.Parent.Text = ("True")
- print("Now True")
- end
- end)
- mouse.Button1Down:Connect(function()
- if Toggle == true then
- if mouse.Target ~= AV then
- player.Character.HumanoidRootPart.CFrame = mouse.Hit
- end
- end
- end)
- spawn(function()
- script.Parent.Parent:FindFirstChild("TextButton2").Activated:Connect(function()
- script.Parent.Parent.Parent:FindFirstChild("Frame2").Visible = Toggle2
- if Toggle2 == true then
- Toggle2 = false
- print("Now False")
- elseif Toggle2 == false then
- Toggle2 = true
- print("Now True")
- end
- end)
- end)
- end
- coroutine.wrap(RVRTSG_fake_script)()
- game.StarterGui:SetCore("SendNotification", {
- Title = "Click Tp Gui";
- Text = "Made By Augus X | You Can Drag The Button";
- Icon = "rbxassetid://12585776892";
- Duration = "10";
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement