Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local WireChanger = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Decor = Instance.new("TextButton")
- local Execute = Instance.new("TextButton")
- local Type = Instance.new("TextButton")
- local ALabel2 = Instance.new("TextLabel")
- local ALabel1 = Instance.new("TextLabel")
- local Note = Instance.new("TextLabel")
- local Creds = Instance.new("TextLabel")
- -- Properties
- WireChanger.Name = "WireChanger"
- WireChanger.Parent = game.StarterGui
- Frame.Parent = WireChanger
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.BackgroundTransparency = 1
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0, 0, 0.360576928, 0)
- Frame.Size = UDim2.new(0.250678748, 0, 0.298076928, 0)
- Decor.Name = "Decor"
- Decor.Parent = Frame
- Decor.Active = false
- Decor.BackgroundColor3 = Color3.new(1, 1, 1)
- Decor.BorderSizePixel = 0
- Decor.Position = UDim2.new(-0.0719999969, 0, -0, 0)
- Decor.Size = UDim2.new(1.06859207, 0, 1, 0)
- Decor.AutoButtonColor = false
- Decor.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- Decor.Font = Enum.Font.SourceSans
- Decor.FontSize = Enum.FontSize.Size14
- Decor.Text = ""
- Decor.TextSize = 14
- Execute.Name = "Execute"
- Execute.Parent = Frame
- Execute.Active = false
- Execute.BackgroundColor3 = Color3.new(0.333333, 1, 0)
- Execute.BorderSizePixel = 0
- Execute.Position = UDim2.new(0.108303249, 0, 0.806451619, 0)
- Execute.Size = UDim2.new(0.707581222, 0, 0.118279569, 0)
- Execute.AutoButtonColor = false
- Execute.Font = Enum.Font.SourceSans
- Execute.FontSize = Enum.FontSize.Size14
- Execute.Text = "Run Process"
- Execute.TextColor3 = Color3.new(1, 1, 1)
- Execute.TextScaled = true
- Execute.TextSize = 14
- Execute.TextWrapped = true
- Type.Name = "Type"
- Type.Parent = Frame
- Type.Active = false
- Type.BackgroundColor3 = Color3.new(1, 1, 1)
- Type.Position = UDim2.new(0.108303249, 0, 0.440860212, 0)
- Type.Size = UDim2.new(0.0830324888, 0, 0.118279569, 0)
- Type.AutoButtonColor = false
- Type.Font = Enum.Font.SourceSans
- Type.FontSize = Enum.FontSize.Size14
- Type.Text = ""
- Type.TextColor3 = Color3.new(1, 1, 1)
- Type.TextScaled = true
- Type.TextSize = 14
- Type.TextWrapped = true
- ALabel2.Name = "ALabel2"
- ALabel2.Parent = Frame
- ALabel2.BackgroundColor3 = Color3.new(1, 1, 1)
- ALabel2.BackgroundTransparency = 1
- ALabel2.Position = UDim2.new(0.212996393, 0, 0.408602148, 0)
- ALabel2.Size = UDim2.new(0.707581222, 0, 0.182795703, 0)
- ALabel2.Font = Enum.Font.SourceSans
- ALabel2.FontSize = Enum.FontSize.Size14
- ALabel2.Text = "What wire type? (On is Pink, Off is Magenta Icicle)"
- ALabel2.TextScaled = true
- ALabel2.TextSize = 14
- ALabel2.TextWrapped = true
- ALabel1.Name = "ALabel1"
- ALabel1.Parent = Frame
- ALabel1.BackgroundColor3 = Color3.new(1, 1, 1)
- ALabel1.BackgroundTransparency = 1
- ALabel1.Position = UDim2.new(0, 0, 0.0322580636, 0)
- ALabel1.Size = UDim2.new(0.967509031, 0, 0.252688169, 0)
- ALabel1.Font = Enum.Font.SourceSans
- ALabel1.FontSize = Enum.FontSize.Size14
- ALabel1.Text = "To use, Simply buy some Wire from Links Logic or Wood R Us place them then run the script!"
- ALabel1.TextScaled = true
- ALabel1.TextSize = 14
- ALabel1.TextWrapped = true
- Note.Name = "Note"
- Note.Parent = Frame
- Note.BackgroundColor3 = Color3.new(1, 1, 1)
- Note.BackgroundTransparency = 1
- Note.Position = UDim2.new(0, 0, 1, 0)
- Note.Size = UDim2.new(0.967509031, 0, 0.252688169, 0)
- Note.Font = Enum.Font.SourceSans
- Note.FontSize = Enum.FontSize.Size14
- Note.Text = "After script is ran, you will have to rejoin LT2."
- Note.TextColor3 = Color3.new(1, 1, 1)
- Note.TextScaled = true
- Note.TextSize = 14
- Note.TextStrokeTransparency = 0.5
- Note.TextWrapped = true
- Creds.Name = "Creds"
- Creds.Parent = Frame
- Creds.BackgroundColor3 = Color3.new(1, 1, 1)
- Creds.BackgroundTransparency = 1
- Creds.Position = UDim2.new(0, 0, -0.252688169, 0)
- Creds.Size = UDim2.new(0.967509031, 0, 0.252688169, 0)
- Creds.Font = Enum.Font.SourceSans
- Creds.FontSize = Enum.FontSize.Size14
- Creds.Text = "Made by: goldenaxelord\nOriginal Script: VIP Server"
- Creds.TextColor3 = Color3.new(1, 1, 1)
- Creds.TextScaled = true
- Creds.TextSize = 14
- Creds.TextStrokeTransparency = 0.5
- Creds.TextWrapped = true
- -- SCRIPTS START HERE
- WireChanger.Parent = game.Players.LocalPlayer.PlayerGui
- local typecurrent = false
- -- on = pink, off = icicle
- Type.MouseButton1Down:connect(function(changeTheType)
- if typecurrent == true then
- typecurrent = false
- Type.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
- elseif typecurrent == false then
- typecurrent = true
- Type.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
- end
- end)
- Execute.MouseButton1Down:connect(function(ChangeTheWire)
- if typecurrent == true then
- local a = game.ReplicatedStorage.Purchasables:FindFirstChild("NeonWirePinky", true)
- a.Name = "Wire"
- local b = game.ReplicatedStorage.Purchasables:FindFirstChild("Wire", true)
- b:Destroy()
- elseif typecurrent == false then
- local c = game.ReplicatedStorage.Purchasables:FindFirstChild("IcicleWireMagenta", true)
- c.Name = "Wire"
- local d = game.ReplicatedStorage.Purchasables:FindFirstChild("Wire", true)
- d:Destroy()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement