Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Loaded")
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Godmode", Text = "GUI has been started."})
- wait()
- -- // Objects \\ --
- local FeGodMode = Instance.new("ScreenGui")
- local Base = Instance.new("Frame")
- local BaseDetail = Instance.new("Frame")
- local BaseLabel = Instance.new("TextLabel")
- local SideBar = Instance.new("Frame")
- local Downbar = Instance.new("Frame")
- local On = Instance.new("TextButton")
- local Off = Instance.new("TextButton")
- local Exit = Instance.new("TextButton")
- -- // Stuff \\ --
- local Player = game:GetService("Players").LocalPlayer
- local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
- local Memory = Instance.new("Folder")
- Memory.Parent = game
- local Godded = false
- Player.CharacterAdded:Connect(function()
- warn("New character detected.")
- wait()
- Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
- for _,v in next, Folder:GetChildren() do
- v:Destroy()
- end
- Godded = false
- end)
- -- // Properties \\ --
- FeGodMode.Name = ""
- FeGodMode.Parent = game.CoreGui
- FeGodMode.ResetOnSpawn = false
- Base.Name = "Base"
- Base.Parent = FeGodMode
- Base.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- Base.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Base.LayoutOrder = 1
- Base.Position = UDim2.new(0.596330404, 0, 0.579681396, 0)
- Base.Size = UDim2.new(0, 207, 0, 138)
- Base.Active = true
- Base.Draggable = true
- BaseDetail.Name = "BaseDetail"
- BaseDetail.Parent = Base
- BaseDetail.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
- BaseDetail.BorderColor3 = Color3.new(0.254902, 0.254902, 0.254902)
- BaseDetail.LayoutOrder = 3
- BaseDetail.Size = UDim2.new(0, 207, 0, 22)
- BaseLabel.Name = "BaseLabel"
- BaseLabel.Parent = BaseDetail
- BaseLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- BaseLabel.BackgroundTransparency = 1
- BaseLabel.Position = UDim2.new(0.149758458, 0, 0, 0)
- BaseLabel.Size = UDim2.new(0, 152, 0, 22)
- BaseLabel.Font = Enum.Font.SourceSansBold
- BaseLabel.Text = "FE God"
- BaseLabel.TextColor3 = Color3.new(1, 1, 1)
- BaseLabel.TextScaled = true
- BaseLabel.TextSize = 14
- BaseLabel.TextWrapped = true
- SideBar.Name = "SideBar"
- SideBar.Parent = BaseDetail
- SideBar.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- SideBar.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- SideBar.BorderSizePixel = 0
- SideBar.Position = UDim2.new(1, 0, 0, 0)
- SideBar.Size = UDim2.new(0, 7, 0, 138)
- Downbar.Name = "Downbar"
- Downbar.Parent = BaseDetail
- Downbar.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- Downbar.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Downbar.BorderSizePixel = 0
- Downbar.Position = UDim2.new(0, 0, 6.27272749, 0)
- Downbar.Size = UDim2.new(0, 214, 0, 6)
- On.Name = "On"
- On.Parent = Base
- On.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- On.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- On.BorderSizePixel = 2
- On.Position = UDim2.new(0.0386473425, 0, 0.391304374, 0)
- On.Size = UDim2.new(0, 77, 0, 42)
- On.Font = Enum.Font.SourceSans
- On.Text = "Turn On"
- On.TextColor3 = Color3.new(1, 1, 1)
- On.TextScaled = true
- On.TextSize = 14
- On.TextWrapped = true
- local Clone
- On.MouseButton1Down:Connect(function()
- if _G.Destroy == true then
- FeGodMode:Destroy()
- Godded = true
- end
- if Godded == false then
- Godded = true
- Clone = Instance.new("Humanoid")
- Humanoid.Parent = Memory
- Clone.Parent = Player.Character
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Godmode", Text = "Godmode has been enabled."})
- end
- end)
- Off.Name = "Off"
- Off.Parent = Base
- Off.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- Off.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Off.BorderSizePixel = 2
- Off.Position = UDim2.new(0.579710126, 0, 0.391304374, 0)
- Off.Size = UDim2.new(0, 77, 0, 42)
- Off.Font = Enum.Font.SourceSans
- Off.Text = "Turn Off"
- Off.TextColor3 = Color3.new(1, 1, 1)
- Off.TextScaled = true
- Off.TextSize = 14
- Off.TextWrapped = true
- Off.MouseButton1Click:Connect(function()
- if Godded == true then
- Godded = false
- Clone:Destroy()
- Humanoid.Parent = Player.Character
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Godmode", Text = "Godmode has been disabled."})
- end
- end)
- Exit.Name = "Exit"
- Exit.Parent = Base
- Exit.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
- Exit.BorderSizePixel = 0
- Exit.Size = UDim2.new(0, 25, 0, 22)
- Exit.Font = Enum.Font.SourceSansBold
- Exit.Text = "X"
- Exit.TextColor3 = Color3.new(0.882353, 0.180392, 0.0392157)
- Exit.TextScaled = true
- Exit.TextSize = 14
- Exit.TextWrapped = true
- Exit.MouseButton1Down:Connect(function()
- FeGodMode:Destroy()
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Destroyed", Text = "GUI has been destroyed."})
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement